home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / prog / word.arj / WGT01.BAK < prev    next >
Text File  |  1993-01-28  |  383b  |  19 lines

  1. #include <conio.h>
  2. #include <wgt.h>
  3.  
  4. /*   WORDUP Graphics Toolkit   Version 3.5
  5.      Demonstration program 1
  6.  
  7. Simply starts the graphics mode (320x200x256), draws a line, gets a key, 
  8. returns to text mode, and exits.
  9. */
  10.  
  11. void main(void)
  12. {
  13. vga256();        // initializes system
  14.  
  15. wsetcolor(15);
  16. wline(0,0,319,199);
  17. getch();
  18. textmode(C80);        // used to return to text mode
  19. }